home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / saver / saver.frm < prev    next >
Text File  |  1995-02-26  |  1KB  |  56 lines

  1. VERSION 2.00
  2. Begin Form Form1 
  3.    AutoRedraw      =   -1  'True
  4.    BackColor       =   &H00000000&
  5.    BorderStyle     =   0  'None
  6.    Caption         =   "Form1"
  7.    ClientHeight    =   5670
  8.    ClientLeft      =   1170
  9.    ClientTop       =   1545
  10.    ClientWidth     =   8820
  11.    Height          =   6105
  12.    Icon            =   SAVER.FRX:0000
  13.    Left            =   1095
  14.    LinkTopic       =   "Form1"
  15.    MousePointer    =   2  'Cross
  16.    ScaleHeight     =   5670
  17.    ScaleWidth      =   8820
  18.    Top             =   1185
  19.    Width           =   8970
  20.    WindowState     =   2  'Maximized
  21.    Begin Timer Timer1 
  22.       Left            =   7575
  23.       Top             =   3255
  24.    End
  25.    Begin CommandButton Command1 
  26.       BackColor       =   &H000000FF&
  27.       Caption         =   "Press Enter and I Disappear - To get your screen back click left mouse button"
  28.       FontBold        =   -1  'True
  29.       FontItalic      =   0   'False
  30.       FontName        =   "Arial"
  31.       FontSize        =   8.25
  32.       FontStrikethru  =   0   'False
  33.       FontUnderline   =   0   'False
  34.       Height          =   480
  35.       Left            =   690
  36.       MousePointer    =   1  'Arrow
  37.       TabIndex        =   0
  38.       Top             =   2445
  39.       Width           =   7305
  40.    End
  41. End
  42. Option Explicit
  43.  
  44. Sub Command1_Click ()
  45. command1.Visible = False
  46.  
  47.  
  48.  
  49. End Sub
  50.  
  51. Sub Form_MouseDown (Button As Integer, Shift As Integer, X As Single, Y As Single)
  52. End
  53.  
  54. End Sub
  55.  
  56.